string->sexpr   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/scheme.xtm

Implementation

(define (string->sexpr str)
   (let* ((port (open-input-string str))
    (res (read port)))
      (close-port port)
      res))


Back to Index